home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kompuutteri K-CD 2002 #1
/
K-CD_2002-01.iso
/
Delphi
/
INSTALL
/
program files
/
Borland
/
Delphi6
/
Help
/
Examples
/
Combobox
/
COMBOBOX.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-05-22
|
299 b
|
16 lines
program combobox;
uses
Forms,
combform in 'combform.pas' {ComboForm},
inptform in 'inptform.pas' {InputForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TComboForm, ComboForm);
Application.CreateForm(TInputForm, InputForm);
Application.Run;
end.